home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / MPW Related / Animated Cursors / QuitCmmd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-14  |  557 b   |  21 lines  |  [TEXT/MPS ]

  1. /******************************************************************************\
  2. * Header Files
  3. \******************************************************************************/
  4.  
  5. #include "QuitCmmd.h"
  6. #include "ShowCursor.h"
  7.  
  8.  
  9. #pragma segment Main
  10. /******************************************************************************\
  11. * DoQuit - Handle quit command
  12. *
  13. * DoQuit handles the quit command by setting the Quitting flag to true.
  14. \******************************************************************************/
  15.  
  16. void
  17. DoQuit ()
  18.     {
  19.     gFlags |= quitFlag;
  20.     }
  21.